home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
600 Games
/
600games.iso
/
Nave
/
sky-chopper.swf
/
scripts
/
frame_336
/
PlaceObject2_2061_210
/
CLIPACTIONRECORD onClipEvent(enterFrame).as
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2005-09-29
|
401 b
|
17 lines
onClipEvent(enterFrame){
if(!_root.gamePaused)
{
if(this._name != "weapon_bolt")
{
this._x += this.z * 10;
this._y += this.n * 10;
_root.enemyCheckHit(this);
if(this._x >= 560 || this._x <= 0 || this._y < 0 || this._y > 360)
{
_root.bulletCount--;
this.removeMovieClip();
}
}
}
}